home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / xcopy < prev   
Text File  |  1991-04-23  |  2KB  |  40 lines

  1.                                    XCOPY
  2.            Copies groups of files. Subdirectories can be included
  3.                     See also <COPY> <VERIFY> <DISKCOPY>
  4.  
  5. XCOPY copies groups of files based on various switches.  It can copy
  6. entire subdirectory trees and is much more powerful than COPY.
  7.  
  8. COMMAND TYPE: External                  VERSION: 3.2 and up
  9.  
  10. USE:  XCOPY [d:][path]filename1 [d:][path][filename2] [/A][/D][/E]
  11.             [/M][/P][/S][/V][/W]
  12. or    XCOPY [d:] path [filename1] [d:][path][filename2] [/A][/D][/E]
  13.             [/M][/P][/S][/V][/W]
  14. or    XCOPY d:[path] [filename1] [d:][path][filename2] [/A][/D][/E]
  15.             [/M][/P][/S][/V][/W]
  16.  
  17. d: path filename1 specifies the source drive, path, and filename.
  18. d: path filename2 specifies the destination drive, path, and filename.
  19. /A   copies only those files that have been modified since the last
  20.      BACKUP /M or XCOPY /M.
  21. /D   copies files whose date is equal to or later than the date
  22.      specified.  If you wish to specify a date, the format is
  23.      /D:mm-dd-yy or whatever date format you may have selected using
  24.      the <COUNTRY> or <SELECT> commands.
  25. /E   causes XCOPY to create subdirectories on the destination drive
  26.      as it copies.
  27. /M   copies only those files that have been modified since the last
  28.      BACKUP /M or XCOPY /M.  The /M option is identical to the /A
  29.      option except XCOPY /M will reset the flags on those files that
  30.      have been modified since the last backup.
  31. /P   causes XCOPY to prompt you before copying each file.
  32. /S   causes XCOPY to copy files in any subdirectories below the
  33.      directory that XCOPY starts in.
  34. /V   causes XCOPY to <VERIFY> that the data recorded was recorded
  35.      correctly.
  36. /W   causes XCOPY to wait for you to insert a disk before beginning.
  37.  
  38. EXAMPLE: XCOPY C:\ D:\ /S
  39. will copy all files in all directories from drive C: to drive D:.
  40.